Conditions | 4 |
Paths | 8 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 6 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | "use strict"; |
||
10 | 1 | const formatFile = options => { |
|
11 | return ' [' + options.level.toUpperCase() + ']' |
||
12 | + '[' + moment(new Date()).format('YYYY-MM-DD HH:mm:ss') + ']' |
||
13 | + (options.message ? ' ' + options.message : '') |
||
14 | + ( |
||
15 | options.meta && Object.keys(options.meta).length |
||
16 | ? ' ' + JSON.stringify(options.meta) |
||
17 | : '' |
||
18 | ) |
||
19 | ; |
||
20 | }; |
||
21 | |||
55 |